home *** CD-ROM | disk | FTP | other *** search
/ JCSM Shareware Collection 1996 September / JCSM Shareware Collection (JCS Distribution) (September 1996).ISO / fileutil / fman430.zip / M_FILMAN.MSC < prev    next >
Text File  |  1994-01-01  |  1KB  |  51 lines

  1. ;
  2. ;               FILE_MAN Program Configuration
  3. ;
  4. ;Comment(' ')
  5. ;Comment('   Left Button:              Enter key')
  6. ;Comment('   Middle Button:            Esc key')
  7. ;Comment('   Right Button:             Exit FILE_MAN')
  8. ;Comment('   Left-Mid Button:          Insert key')
  9. ;Comment('   Mid-Right Button:         Delete key')
  10. ;Comment(' ')
  11.  
  12. ;
  13. ;               Parameters
  14. ;
  15. Sensitivity     (20, 20)                ; (Xinc, Yinc)
  16. Hysteresis      (2, 2)                  ; (AutoX, AutoY)
  17.  
  18. ;
  19. ;               Cursor Definitions
  20. ;
  21. ArrowKeys: Cursor
  22. (
  23.                 Left    ([Left])
  24.                 Right   ([Right])
  25.                 Up      ([Up])
  26.                 Down    ([Down])
  27. )
  28.  
  29. ;
  30. ;               Button Definitions
  31. ;
  32. LB:             Button  (Keys([Enter]))         ; Left button
  33. MB:             Button  (Keys([Esc]))           ; Middle button
  34. RB:             Button  (Keys([Esc] [&h8600]))      ; Right button
  35. LMB:            Button  (Keys([Ins]))           ; Left Middle button
  36. MRB:            Button  (Keys([Del]))           ; Middle Right button
  37. ;
  38. ;               Mouse Definition
  39. ;
  40. Mouse
  41. (
  42.                 Left                    (LB)
  43.                 Middle                  (MB)
  44.                 LeftMiddle              (LMB)       
  45.                 Right                   (RB)
  46.                 MiddleRight             (MRB)
  47.                 Cursor                  (ArrowKeys)
  48. )
  49. 
  50.  
  51.